Mercurial > jouvence
comparison setup.py @ 13:ee741bbe96a8
Rename to 'Jouvence'.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 04 Jan 2017 09:02:29 -0800 |
parents | c6d28a830f68 |
children | db27f548daa8 |
comparison
equal
deleted
inserted
replaced
12:eea60b93da2c | 13:ee741bbe96a8 |
---|---|
18 tests_require = readlines('dev-requirements.txt') | 18 tests_require = readlines('dev-requirements.txt') |
19 long_description = read('README.rst') | 19 long_description = read('README.rst') |
20 | 20 |
21 | 21 |
22 setup( | 22 setup( |
23 name="Fontaine", | 23 name="Jouvence", |
24 use_scm_version={'write_to': 'fontaine/version.py'}, | 24 use_scm_version={'write_to': 'jouvence/version.py'}, |
25 description="A library for parsing and rendering Fountain screenplays.", | 25 description="A library for parsing and rendering Fountain screenplays.", |
26 long_description=long_description, | 26 long_description=long_description, |
27 author="Ludovic Chabant", | 27 author="Ludovic Chabant", |
28 author_email="ludovic@chabant.com", | 28 author_email="ludovic@chabant.com", |
29 license="Apache License 2.0", | 29 license="Apache License 2.0", |
30 url="https://bolt80.com/fontaine", | 30 url="https://bolt80.com/jouvence", |
31 keywords='fountain screenplay screenwriting screenwriter', | 31 keywords='fountain screenplay screenwriting screenwriter', |
32 packages=find_packages(), | 32 packages=find_packages(), |
33 include_package_data=True, | 33 include_package_data=True, |
34 zip_safe=False, | 34 zip_safe=False, |
35 setup_requires=['setuptools_scm', 'pytest-runner'], | 35 setup_requires=['setuptools_scm', 'pytest-runner'], |
36 tests_require=tests_require, | 36 tests_require=tests_require, |
37 install_requires=install_requires, | 37 install_requires=install_requires, |
38 entry_points={ | 38 entry_points={ |
39 'console_scripts': [ | 39 'console_scripts': [ |
40 'fontaine = fontaine.cli.main' | 40 'jouvence = jouvence.cli.main' |
41 ]} | 41 ]} |
42 ) | 42 ) |