-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 867 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
import setuptools
# with open('README.md', 'r') as rf:
# long_description = rf.read()
#
setuptools.setup(
name='filedict',
version="0.1b",
author='n0x1s',
author_email='n0x1s0x01@gmail.com',
url='https://github.com/n0x1s/filedict',
description='Dict like file',
license='MIT',
# long_description=long_description,
long_description_content_type="text/markdown",
maintainer='n0x1s',
maintainer_email='n0x1s0x01@gmail.com',
packages=['filedict'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
python_requires='>=3'
)