-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 952 Bytes
/
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
import setuptools, sys, os
with open(os.path.join(os.path.dirname(__file__), "radialdf", "__init__.py"), "r") as f:
for line in f:
if "__version__ = " in line:
exec(line.strip())
break
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="radialdf",
version=__version__,
author="Robin De Schepper",
author_email="[email protected]",
description="A package to calculate the radial distribution function of particles",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Helveg/radialdf",
license="MIT",
packages=setuptools.find_packages(),
install_requires=[
"scipy>=1.5.4",
"numpy>=1.19"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)