|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | | -with open('README.md', 'r') as fh: |
| 3 | +with open("README.md", "r") as fh: |
4 | 4 | long_description = fh.read() |
5 | 5 |
|
6 | 6 | setup( |
7 | | - name='numpyencoder', |
8 | | - version='0.2.0', |
9 | | - author='Hunter M. Allen', |
10 | | - author_email='allenhm@gmail.com', |
11 | | - license='MIT', |
12 | | - #packages=find_packages(), |
13 | | - packages=['numpyencoder'], |
14 | | - install_requires=['numpy>=1.14.3'], |
15 | | - description='Python JSON encoder for handling Numpy data types.', |
| 7 | + name="numpyencoder", |
| 8 | + version="0.2.0", |
| 9 | + author="Hunter M. Allen", |
| 10 | + author_email="allenhm@gmail.com", |
| 11 | + license="MIT", |
| 12 | + # packages=find_packages(), |
| 13 | + packages=["numpyencoder"], |
| 14 | + install_requires=["numpy>=1.14.3"], |
| 15 | + description="Python JSON encoder for handling Numpy data types.", |
16 | 16 | long_description=long_description, |
17 | | - long_description_content_type='text/markdown', |
18 | | - url='https://github.com/hmallen/numpyencoder', |
19 | | - keywords=['numpy', 'json', 'encoder'], |
| 17 | + long_description_content_type="text/markdown", |
| 18 | + url="https://github.com/hmallen/numpyencoder", |
| 19 | + keywords=["numpy", "json", "encoder"], |
20 | 20 | classifiers=( |
21 | | - 'Programming Language :: Python :: 3', |
22 | | - 'License :: OSI Approved :: MIT License', |
23 | | - 'Operating System :: OS Independent', |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "License :: OSI Approved :: MIT License", |
| 23 | + "Operating System :: OS Independent", |
24 | 24 | ), |
25 | 25 | ) |
0 commit comments