Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Change build method, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sco1 committed Mar 16, 2017
1 parent 2ad61a5 commit 51f0075
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ __pycache__/
# Pycharm temp dir
.idea/

# Flit Build Directory
dist/
# Build Directory
dist/
build/
*.egg-info/
12 changes: 0 additions & 12 deletions flit.ini

This file was deleted.

19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
url='https://github.com/sco1/dragpy',

packages=find_packages(),
install_requires=["matplotlib"]
)

0 comments on commit 51f0075

Please sign in to comment.