-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.18 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
from setuptools import setup, find_packages
from os import path
from itertools import chain
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
extras_require={
'test': ['coverage', 'pytest', 'hypothesis'],
'dev': ['asv', 'perfplot', 'pudb', 'pytest-profiling'],
'gpu': ['cupy'],
}
extras_require['all'] = list(set(chain(*extras_require.values())))
setup(
name="nbody",
version="0.1.0",
packages=find_packages(exclude=['benchmarks', 'prof', 'sourcedocs']),
url="https://github.com/StanczakDominik/Nbody",
license="CC BY 4.0",
author="Dominik Stańczak",
author_email="[email protected]",
description="molecular dynamics in Python on the GPU via numba.cuda",
install_requires="numba numpy h5py matplotlib scipy click tqdm pandas gitpython".split(),
extras_require=extras_require,
project_urls={
'Bug Reports': 'https://github.com/StanczakDominik/nbody/issues',
'Say Thanks!': 'https://saythanks.io/to/StanczakDominik',
'Source': 'https://github.com/StanczakDominik/nbody/',
},
)