Skip to content

Commit

Permalink
setting up pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesalbert committed Jan 7, 2018
1 parent 3442b2d commit ce3f428
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
28 changes: 13 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
#!/usr/bin/env python
from distutils.core import setup

from setuptools import setup
from pip.req import parse_requirements

install_reqs = parse_requirements('requirements.txt', session='holyc')
reqs = [str(ir.req) for ir in install_reqs]

setup(name='secularize',
version='0.0.1',
description='run HolyC source on linux...and secularify wasn\'t as catchy',
author='James Albert',
author_email='jalbert1@uci.edu',
url='https://www.github.com/jamesalbert/HolyC-for-Linux',
install_requires=reqs,
packages=['secularize'],
)
setup(
name = 'secularize',
packages = ['secularize'],
version = '0.0.1',
description = 'run HolyC source on linux...and secularify wasn\'t as catchy',
author = 'James Albert',
author_email = 'jamesrobertalbert@gmail.com',
url = 'https://www.github.com/jamesalbert/HolyC-for-Linux',
download_url = 'https://github.com/jamesalbert/HolyC-for-Linux/archive/v0.0.1.tar.gz',
keywords = ['holyc', 'linux', 'terry', 'lord', 'temple', 'mlg'],
classifiers = [],
)

0 comments on commit ce3f428

Please sign in to comment.