File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -349,6 +349,7 @@ local_settings.py
349349nosetests.xml
350350pip-log.txt
351351pip-delete-this-directory.txt
352+ * .egg-info /
352353__pycache__ /
353354develop-eggs /
354355docs /_build /
Original file line number Diff line number Diff line change 1+ include README.rst LICENSE
2+
3+ graft docs
4+
5+ global-exclude *.py[co]
6+
7+ prune docs/_build
8+ prune docs/_themes
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
4+ from collections import OrderedDict
25
36import setuptools
47from sphinx .setup_command import BuildDoc
58
9+ with open ('README.rst' , 'rt' , encoding = 'utf8' ) as f :
10+ readme = f .read ()
11+
612name = "neighbormodels"
713version = "0.0"
814release = "0.0.1"
13191420 license = "MIT" ,
1521 version = release ,
22+ url = "https://github.com/jkglasbrenner/datamaterials-neighbormodels" ,
23+ project_urls = OrderedDict ((
24+ ("Documentation" , "https://neighbormodels.readthedocs.io" ),
25+ ("Code" , "https://github.com/jkglasbrenner/datamaterials-neighbormodels" ),
26+ )),
1627 description = (
1728 "A tool for building crystal lattice models with distance-dependent "
1829 "neighbor interactions."
1930 ),
31+ long_description = readme ,
2032 python_requires = ">=3.6" ,
21- packages = setuptools .find_packages ("src" ),
22- package_dir = {"" : "src" },
33+ packages = setuptools .find_packages (),
2334 include_package_data = True ,
2435 install_requires = [
2536 "numpy" ,
2637 "pandas" ,
2738 "pymatgen" ,
2839 ],
40+ extras_require = {
41+ "docs" : [
42+ "sphinx" ,
43+ ],
44+ },
2945 cmdclass = {"build_sphinx" : BuildDoc },
3046 command_options = {
3147 "build_sphinx" : {
You can’t perform that action at this time.
0 commit comments