-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (36 loc) · 1.41 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
from setuptools import setup, find_namespace_packages, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='ifscApi',
version='0.2',
description='Api for Ifsc',
long_description=long_description,
long_description_content_type='text/markdown',
author='Harsh Oza',
author_email='harshoza3636@gmail.com',
license='MIT',
install_requires=[
'flask',
'flask-restful'
],
url="https://github.com/HarshOza36/ifsc_api",
download_url='https://github.com/HarshOza36/ifscApi/archive/v_02.tar.gz',
keywords=['IFSC Code', 'IFSC', 'Bank IFSC Codes'],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
)