-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1000 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
"""
Project setup file
"""
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='fyle-accounting-mappings',
version='1.36.2',
author='Shwetabh Kumar',
author_email='[email protected]',
description='Django application to store the fyle accounting mappings in a generic manner',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['fyle', 'rest', 'django-rest-framework', 'api', 'python', 'accounting'],
url='https://github.com/fylein/fyle-accounting-mappings',
packages=setuptools.find_packages(),
install_requires=['django>=3.0.2', 'django-rest-framework>=0.1.0'],
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
]
)