-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (43 loc) · 1.58 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
50
51
# Always prefer setuptools over distutils
import os
from setuptools import setup, find_packages
version = "0.0.2"
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='transcroobie',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version=version,
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(),
include_package_data=True,
author='Armin Samii',
url='https://github.com/artoonie/transcroobie',
entry_points={
'console_scripts': [
'poppy=poppy.Poppy:main',
'papika=poppy.Poppy:main',
'bui=poppy.bui:main',
'bsInstall.py=poppy.util.bsInstall:main',
'updateDependencies.py=poppy.updateDependencies:main'
],
},
scripts=[ ],
install_requires=['django',
'enum34',
'gunicorn',
'whitenoise',
'pydub',
'boto',
'dj-database-url',
'psycopg2',
'django-storages',
'celery==3.1.19',
'kombu==3.0.32',
'redis==2.10.5',
'python-social-auth==0.2.1',
'google-api-python-client==1.6.2']
)