forked from GkAntonius/feynman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 680 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 680 Bytes
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
from setuptools import find_packages
install_requires = [
"matplotlib>=1.1",
"numpy>=1.6",
]
setup_args = dict(
name = 'feynman',
version = '1.1.0',
description = "Feynman diagrams with python-matplotlib.",
author = "Gabriel Antonius",
author_email = "gabriel.antonius@gmail.com",
#url = url,
#license = license,
#platforms = platforms,
#keywords = keywords,
install_requires = install_requires,
packages = find_packages(),
)
if __name__ == "__main__":
from setuptools import setup
setup(**setup_args)