-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 1.03 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='mcxlib',
packages=setuptools.find_packages(),
version='0.4',
include_package_data=True,
description='python library to get MCX India data',
long_description=long_description,
long_description_content_type="text/markdown", author='RuchiTanmay',
author_email='ruchitanmay@gmail.com',
url='https://github.com/RuchiTanmay/mcxlib',
install_requires=['requests', 'pandas'],
keywords=['mcx', 'mcx india', 'python', 'mcx data', 'mcx history data', 'commodity', 'mcx python',
'mcx python library', 'mcx library'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)