-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.2 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
from setuptools import setup,find_packages
setup(name='test_webapp',
version='0.1',
description='This is an test task from computacenter',
url='https://github.com/savin-berlin/test_webapp',
git_url='https://github.com/savin-berlin/test_webapp.git',
author='Egor Savin',
author_email='science@savin.berlin',
license='MIT',
#packages=find_packages('zas_rep_tools/'),
packages=['root_app'],
install_requires=[ "django","nose","django-tables2", "django-crispy-forms",
"django-crequest", "django-session-csrf", "blessings",
"django-fake-model","djangorestframework", "validate_email"],
include_package_data=True, # include everything in source control
zip_safe=False,
test_suite='nose.collector', # test by installationls
tests_require=['nose'], #test by installation
#entry_points={
# 'console_scripts': [
# 'zas-rep-tools=zas_rep_tools.cli.main:main',
# ],
#},
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
]
)