|
4 | 4 | pkg_name = "element_event" |
5 | 5 | here = path.abspath(path.dirname(__file__)) |
6 | 6 |
|
7 | | -with open(path.join(here, 'README.md'), 'r') as f: |
| 7 | +with open(path.join(here, "README.md"), "r") as f: |
8 | 8 | long_description = f.read() |
9 | 9 |
|
10 | | -with open(path.join(here, 'requirements.txt')) as f: |
| 10 | +with open(path.join(here, "requirements.txt")) as f: |
11 | 11 | requirements = f.read().splitlines() |
12 | 12 |
|
13 | | -with open(path.join(here, pkg_name, 'version.py')) as f: |
| 13 | +with open(path.join(here, pkg_name, "version.py")) as f: |
14 | 14 | exec(f.read()) |
15 | 15 |
|
16 | 16 | setup( |
17 | | - name=pkg_name.replace('_', '-'), |
| 17 | + name=pkg_name.replace("_", "-"), |
18 | 18 | version=__version__, |
19 | 19 | description="DataJoint Elements for Trialized Experiments", |
20 | 20 | long_description=long_description, |
21 | | - long_description_content_type='text/markdown', |
22 | | - author='DataJoint', |
23 | | - |
24 | | - license='MIT', |
| 21 | + long_description_content_type="text/markdown", |
| 22 | + author="DataJoint", |
| 23 | + |
| 24 | + license="MIT", |
25 | 25 | url=f'https://github.com/datajoint/{pkg_name.replace("_", "-")}', |
26 | | - keywords='neuroscience behavior bpod trials datajoint', |
27 | | - packages=find_packages(exclude=['contrib', 'docs', 'tests*']), |
| 26 | + keywords="neuroscience behavior bpod trials datajoint", |
| 27 | + packages=find_packages(exclude=["contrib", "docs", "tests*"]), |
28 | 28 | scripts=[], |
29 | 29 | install_requires=requirements, |
30 | 30 | ) |
0 commit comments