|
8 | 8 | here = path.abspath(path.dirname(__file__)) |
9 | 9 |
|
10 | 10 | # Get the long description from the README file |
11 | | -with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
| 11 | +with open(path.join(here, "README.md"), encoding="utf-8") as f: |
12 | 12 | long_description = f.read() |
13 | 13 |
|
14 | 14 | # Arguments marked as "Required" below must be included for upload to PyPI. |
15 | 15 | # Fields marked as "Optional" may be commented out. |
16 | 16 | setup( |
17 | | - name='nfp', |
| 17 | + name="nfp", |
18 | 18 | version=versioneer.get_version(), |
19 | 19 | cmdclass=versioneer.get_cmdclass(), |
20 | | - description='Keras layers for machine learning on graph structures', |
| 20 | + description="Keras layers for machine learning on graph structures", |
21 | 21 | long_description=long_description, |
22 | | - long_description_content_type='text/markdown', |
23 | | - url='https://github.com/NREL/nfp', # Optional |
24 | | - author='Peter St. John', |
25 | | - author_email='[email protected]', # Optional |
| 22 | + long_description_content_type="text/markdown", |
| 23 | + url="https://github.com/NREL/nfp", # Optional |
| 24 | + author="Peter St. John", |
| 25 | + author_email="[email protected]", # Optional |
26 | 26 | classifiers=[ |
27 | | - 'Development Status :: 3 - Alpha', |
28 | | - |
| 27 | + "Development Status :: 3 - Alpha", |
29 | 28 | # Indicate who your project is intended for |
30 | | - 'Intended Audience :: Developers', |
31 | | - |
| 29 | + "Intended Audience :: Developers", |
32 | 30 | # Pick your license as you wish |
33 | | - 'License :: OSI Approved :: MIT License', |
34 | | - |
| 31 | + "License :: OSI Approved :: MIT License", |
35 | 32 | # Specify the Python versions you support here. In particular, ensure |
36 | 33 | # that you indicate whether you support Python 2, Python 3 or both. |
37 | | - 'Programming Language :: Python :: 3', |
38 | | - 'Programming Language :: Python :: 3.4', |
39 | | - 'Programming Language :: Python :: 3.5', |
40 | | - 'Programming Language :: Python :: 3.6', |
41 | | - 'Programming Language :: Python :: 3.7', |
42 | | - 'Programming Language :: Python :: 3.8', |
43 | | - 'Programming Language :: Python :: 3.9', |
| 34 | + "Programming Language :: Python :: 3", |
| 35 | + "Programming Language :: Python :: 3.6", |
| 36 | + "Programming Language :: Python :: 3.7", |
| 37 | + "Programming Language :: Python :: 3.8", |
| 38 | + "Programming Language :: Python :: 3.9", |
44 | 39 | ], |
45 | | - |
46 | | - packages=find_packages(exclude=['docs', 'tests']), # Required |
47 | | - |
| 40 | + packages=find_packages(exclude=["docs", "tests"]), # Required |
48 | 41 | project_urls={ |
49 | | - 'Source': 'https://github.com/NREL/nfp', |
| 42 | + "Source": "https://github.com/NREL/nfp", |
50 | 43 | }, |
51 | 44 | ) |
0 commit comments