-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (40 loc) · 1.03 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
"""
import os
from setuptools import setup
project_dir = os.path.dirname(__file__)
def read(rel_path):
return open(
os.path.join(project_dir, rel_path)
).read()
def read_requirements():
return [
p.strip() for p in read(
"requirements.txt"
).split("\n") if p.strip()
]
setup(
name="nit",
version="0.1.0",
author="Brian Jorgensen",
author_email="[email protected]",
description=("A framework for experimenting with "
"Git-like versioned storage systems."),
long_description=read('README.md'),
install_requires=read_requirements(),
license = "BSD",
keywords = "vcs dvcs git",
url = "",
packages=['nit'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'nit = nit.components.nit.cli:main',
'nit-git = nit.components.git.cli:main',
]
},
)