66setup (
77 name = "spacetimeengine" ,
88 version = "0.1.11" ,
9- packages = find_packages (),
9+ packages = find_packages (include = [ "spacetimeengine" , "spacetimeengine.*" ] ),
1010 author = "Michael.C Ryan" ,
11111212 description = "A Python physics utility which can analyze any given metric solution to the Einstein field equations." ,
1313 long_description = long_description ,
1414 long_description_content_type = "text/markdown" ,
1515 url = "https://github.com/spacetimeengineer/spacetimeengine" ,
16+ project_urls = {
17+ "Documentation" : "https://github.com/spacetimeengineer/spacetimeengine#readme" ,
18+ "Source" : "https://github.com/spacetimeengineer/spacetimeengine" ,
19+ "Tracker" : "https://github.com/spacetimeengineer/spacetimeengine/issues" ,
20+ },
21+ license = "BSD License" ,
1622 install_requires = [
17- "sympy"
23+ "sympy>=1.0 "
1824 ],
25+ extras_require = {
26+ "testing" : ["nose" ]
27+ },
1928 tests_require = [
2029 "nose"
2130 ],
2231 test_suite = "nose.collector" ,
2332 classifiers = [
33+ "Development Status :: 4 - Beta" ,
34+ "Intended Audience :: Science/Research" ,
2435 "Programming Language :: Python :: 3" ,
36+ "Programming Language :: Python :: 3.6" ,
37+ "Programming Language :: Python :: 3.7" ,
38+ "Programming Language :: Python :: 3.8" ,
39+ "Programming Language :: Python :: 3.9" ,
40+ "Programming Language :: Python :: 3.10" ,
2541 "License :: OSI Approved :: BSD License" ,
2642 "Operating System :: OS Independent" ,
2743 "Topic :: Scientific/Engineering" ,
2844 "Topic :: Scientific/Engineering :: Mathematics" ,
2945 "Topic :: Scientific/Engineering :: Physics" ,
3046 ],
3147 python_requires = ">=3.6" ,
48+ include_package_data = True , # Ensures files specified in MANIFEST.in are included
49+ zip_safe = False , # Ensures the package can be safely installed as a directory
3250)
0 commit comments