-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.29 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
with open("CHANGELOG.md", "r") as file:
changelog = file.readlines()[9:20]
with open("README.md", "r") as file:
readme = file.read()
with open("requirements.txt", "r") as file:
install_requires = file.read().split("\n")
VERSION = "0.2.5"
DESCRIPTION = "Neuroimaging Results Visualization"
LONG_DESCRIPTION = f"## What's new in {VERSION}\n\n{''.join(changelog)}\n\n{readme}"
setup(
name="nerv",
version=VERSION,
author="rmanaem",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url="https://github.com/rmanaem/nerv",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
license="MIT",
keywords=[
"python",
"dash",
"pandas",
"data visualization",
"plotly",
"neuroscience",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
],
)