|
6 | 6 |
|
7 | 7 | self_path = os.path.dirname(os.path.realpath(__file__)) |
8 | 8 |
|
9 | | -with open(os.path.join(self_path, 'dffml_feature_auth', 'version.py'), |
10 | | - 'r') as f: |
| 9 | +with open( |
| 10 | + os.path.join(self_path, "dffml_feature_auth", "version.py"), "r" |
| 11 | +) as f: |
11 | 12 | for line in f: |
12 | | - if line.startswith('VERSION'): |
13 | | - version = ast.literal_eval(line.strip().split('=')[-1].strip()) |
| 13 | + if line.startswith("VERSION"): |
| 14 | + version = ast.literal_eval(line.strip().split("=")[-1].strip()) |
14 | 15 | break |
15 | 16 |
|
16 | | -with open(os.path.join(self_path, 'README.md'), 'r', encoding='utf-8') as f: |
| 17 | +with open(os.path.join(self_path, "README.md"), "r", encoding="utf-8") as f: |
17 | 18 | readme = f.read() |
18 | 19 |
|
19 | | -INSTALL_REQUIRES = [ |
20 | | - ] |
| 20 | +INSTALL_REQUIRES = [] |
21 | 21 |
|
22 | 22 | setup( |
23 | | - name='dffml_feature_auth', |
| 23 | + name="dffml_feature_auth", |
24 | 24 | version=version, |
25 | | - description='', |
| 25 | + description="", |
26 | 26 | long_description=readme, |
27 | | - long_description_content_type='text/markdown', |
28 | | - author='John Andersen', |
29 | | - author_email='john.s.andersen@intel.com', |
30 | | - url='https://github.com/intel/dffml/blob/master/feature/auth/README.md', |
31 | | - license='MIT', |
32 | | - |
33 | | - keywords=[ |
34 | | - '', |
35 | | - ], |
36 | | - |
| 27 | + long_description_content_type="text/markdown", |
| 28 | + author="John Andersen", |
| 29 | + author_email="john.s.andersen@intel.com", |
| 30 | + url="https://github.com/intel/dffml/blob/master/feature/auth/README.md", |
| 31 | + license="MIT", |
| 32 | + keywords=[""], |
37 | 33 | classifiers=[ |
38 | | - 'Development Status :: 3 - Alpha', |
39 | | - 'Intended Audience :: Developers', |
40 | | - 'License :: OSI Approved :: MIT License', |
41 | | - 'License :: OSI Approved :: Apache Software License', |
42 | | - 'Natural Language :: English', |
43 | | - 'Operating System :: OS Independent', |
44 | | - 'Programming Language :: Python :: 3.7', |
45 | | - 'Programming Language :: Python :: Implementation :: CPython', |
46 | | - 'Programming Language :: Python :: Implementation :: PyPy', |
| 34 | + "Development Status :: 3 - Alpha", |
| 35 | + "Intended Audience :: Developers", |
| 36 | + "License :: OSI Approved :: MIT License", |
| 37 | + "License :: OSI Approved :: Apache Software License", |
| 38 | + "Natural Language :: English", |
| 39 | + "Operating System :: OS Independent", |
| 40 | + "Programming Language :: Python :: 3.7", |
| 41 | + "Programming Language :: Python :: Implementation :: CPython", |
| 42 | + "Programming Language :: Python :: Implementation :: PyPy", |
47 | 43 | ], |
48 | | - |
49 | 44 | install_requires=INSTALL_REQUIRES, |
50 | 45 | tests_require=[], |
51 | | - |
52 | 46 | packages=find_packages(), |
53 | 47 | entry_points={ |
54 | | - 'dffml.operation': [ |
55 | | - 'scrypt = dffml_feature_auth.feature.operations:scrypt', |
| 48 | + "dffml.operation": [ |
| 49 | + "scrypt = dffml_feature_auth.feature.operations:scrypt" |
56 | 50 | ], |
57 | | - 'dffml.operation.implementation': [ |
58 | | - 'scrypt = dffml_feature_auth.feature.operations:Scrypt', |
| 51 | + "dffml.operation.implementation": [ |
| 52 | + "scrypt = dffml_feature_auth.feature.operations:Scrypt" |
59 | 53 | ], |
60 | 54 | }, |
61 | 55 | ) |
0 commit comments