Update setup.py, README, .gitignore for setuptools/PyPI package.
Chris Pressey
2 years ago
2 | 2 |
*.hi
|
3 | 3 |
*.pyc
|
4 | 4 |
*.actual
|
|
5 |
/venv/
|
|
6 |
/build/
|
|
7 |
/dist/
|
|
8 |
*.egg-info/
|
132 | 132 |
|
133 | 133 |
Or you can install it using `pip`:
|
134 | 134 |
|
135 | |
pip install -e git://github.com/catseye/Falderal.git@rel_0_13#egg=falderal
|
|
135 |
pip install -e Falderal==0.13
|
136 | 136 |
|
137 | 137 |
(Depending on your needs, you may wish to establish a virtual environment
|
138 | 138 |
first. Describing how to do so is outside the scope of this document.)
|
0 | |
from distutils.core import setup
|
|
0 |
import setuptools
|
1 | 1 |
|
2 | 2 |
|
3 | |
setup(
|
|
3 |
with open("README.markdown", "r") as fh:
|
|
4 |
long_description = fh.read()
|
|
5 |
|
|
6 |
setuptools.setup(
|
4 | 7 |
name='Falderal',
|
5 | 8 |
version='0.13',
|
6 | 9 |
description='Definition of, and tools for using, the Falderal literate testing format',
|
|
10 |
long_description=long_description,
|
|
11 |
long_description_content_type="text/markdown",
|
7 | 12 |
author='Chris Pressey',
|
8 | 13 |
author_email='packages@catseye.tc',
|
9 | 14 |
url='https://catseye.tc/node/Falderal',
|
10 | 15 |
packages=['falderal'],
|
11 | 16 |
package_dir={'': 'src'},
|
12 | 17 |
scripts=['bin/falderal'],
|
|
18 |
classifiers=[
|
|
19 |
"Development Status :: 4 - Beta",
|
|
20 |
"Intended Audience :: Developers",
|
|
21 |
"License :: OSI Approved :: BSD License",
|
|
22 |
"Operating System :: OS Independent",
|
|
23 |
"Programming Language :: Python :: 2.7",
|
|
24 |
"Programming Language :: Python :: 3",
|
|
25 |
"Topic :: Software Development :: Testing",
|
|
26 |
],
|
13 | 27 |
)
|