Changeset - 912c6f3de1cb
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-05-18 12:39:11
brettcsmith@brettcsmith.org
setup: 1.0 release.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
#!/usr/bin/env python3
 

	
 
from setuptools import setup
 

	
 
setup(
 
    name='conservancy_beancount',
 
    description="Plugin, library, and reports for reading Conservancy's books",
 
    version='0.1',
 
    version='1.0.0',
 
    author='Software Freedom Conservancy',
 
    author_email='info@sfconservancy.org',
 
    license='GNU AGPLv3+',
 

	
 
    install_requires=[
 
        'beancount>=2.2',
 
        'PyYAML>=3.0',
 
        'regex',
 
        'rt>=2.0',
 
    ],
 
    setup_requires=[
 
        'pytest-mypy',
0 comments (0 inline, 0 general)