atomictest: update three-j symbol test
[physicspy.git] / setup.py
blobe91b1e6d04593eec6641eb8b3fb854e78914ad1b
1 #!/usr/bin/env python
2 """Physicspy: physics calculations in Python
4 """
6 DOCLINES = __doc__.split("\n")
8 import os
9 from distutils.core import setup
11 # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
12 # update it when the contents of directories change.
13 if os.path.exists('MANIFEST'): os.remove('MANIFEST')
15 def setup_package():
16 from distutils.core import setup
18 try:
19 setup(name='physicspy',
20 author = 'Gergely Imreh',
21 author_email = 'imrehg@gmail.com',
22 version = '0.1.0',
23 description = DOCLINES[0],
24 long_description = "\n".join(DOCLINES[2:]),
25 url = 'http://github.com/imrehg/physicspy/',
26 license = 'MIT',
27 platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
28 packages = ['physicspy','physicspy.optics'])
29 finally:
30 pass
32 return
35 if __name__ == '__main__':
36 setup_package()