diff --git a/.gitignore b/.gitignore index 9d3e498..cd74877 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,7 @@ __pycache__/ # Pycharm temp dir .idea/ -# Flit Build Directory -dist/ \ No newline at end of file +# Build Directory +dist/ +build/ +*.egg-info/ \ No newline at end of file diff --git a/flit.ini b/flit.ini deleted file mode 100644 index 6f23643..0000000 --- a/flit.ini +++ /dev/null @@ -1,12 +0,0 @@ -[metadata] -module = dragpy -author = sco1 -author-email = sco1.git@gmail.com -home-page = https://github.com/sco1/dragpy - -requires-python= >=3.6 -requires=matplotlib -classifiers=Development Status :: 3 - Alpha - Intended Audience :: Developers - Programming Language :: Python :: 3.6 - Topic :: Scientific/Engineering :: Visualization \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..208f17a --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup, find_packages +import sys + +if sys.version_info[:2] < (3, 6): + raise RuntimeError("Python Version >= 3.6 required.") + +__version__ = '0.5' + +setup( + name='dragpy', + version=f'{__version__}', + + author='sco1', + author_email='sco1.git@gmail.com', + url='https://github.com/sco1/dragpy', + + packages=find_packages(), + install_requires=["matplotlib"] +) \ No newline at end of file