-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.5 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from distutils.command.install import INSTALL_SCHEMES
from lcode import __version__
with open('README.md', 'r') as f:
long_description = f.read()
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
with open('requirements.txt', 'r') as f:
requirements = f.read().split('\n')
if __name__ == '__main__':
setup(
name='lcode',
version=__version__,
author='lcodePy-team',
author_email='team@lcode.info',
description='LCODE is a free software for simulation' +
'plasma wakefield acceleration based on QSA.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://lcode.info',
download_url='https://github.com/lcodePy-team/lcodePy',
packages=find_packages(),
install_requires=requirements,
package_data={'lcode': ['examples/*.py']},
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Environment :: Console',
'Operating System :: OS Independent'
],
license ='BSD-3-Clause-extended',
license_files = ('LICENSE',),
keywords=['plasma wakefield acceleration',
'quasistatic approximation',
'numerical simulation'],
)