-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import find_packages, setup
setup(
name='Swit',
packages=find_packages(where='Swit'),
package_dir={"": "Swit"},
include_package_data=True,
version='0.2',
license='MIT',
description='Swit is a basic open-source implementation of Git, meant for experimenting and studying Git\'s concepts and core design.',
author='Noga Osin',
author_email='nogaos97@gmail.com',
url='https://github.com/NogaOs/Swit',
download_url='https://github.com/NogaOs/Swit/archive/refs/tags/v0.2.tar.gz',
keywords=['git', 'version control', 'source control'],
install_requires=[
'wheel',
'loguru',
'networkx',
'matplotlib',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': ['Swit=Swit.Switter:main'],
},
)