-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 878 Bytes
/
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
from setuptools import setup, find_packages
import sys
import os.path
def load_requirements(filename='requirements.txt'):
with open(filename) as f:
lines = f.readlines()
return lines
setup(
name='aci',
version="0.0.1",
description='',
url='',
author='Levin Brinkmann',
author_email='',
license='',
packages=[package for package in find_packages()
if (package.startswith('aci'))],
zip_safe=False,
install_requires=load_requirements(),
extras_require={'dev': load_requirements('dev_requirements.txt')},
entry_points={
'console_scripts': [
'train = aci.train:main',
'post = aci.post:main',
'plot = aci.plot:main',
'video = aci.video:main',
'merge = aci.merge:main'
],
},
scripts=[
'djx/scripts/djx'
]
)