-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (29 loc) · 932 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
38
39
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="Digitacion",
version="0.1.0",
url='',
license='GPL V. 3',
description="Digitacion de planillas",
long_description=read('README.md'),
author='Herald Olivares',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['setuptools', 'django'],
classifiers=[
'Development Status :: Production',
'Framework :: Django',
'Intended Audience :: Public',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Statics',
'Topic :: Internet :: WWW/HTTP',
],
include_package_data=True,
zip_safe=False,
)